home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 7 B / CHIP_HITWARE_7B.iso / Edukacja / Guitar Tuner / Wintun16.dxr / 00026_checkTune4.ls < prev    next >
Encoding:
Text File  |  1997-04-24  |  329 b   |  16 lines

  1. on checkTune4
  2.   global gTuning
  3.   puppetSound(0)
  4.   if field "tuning selection" = "standard" then
  5.     puppetSound("D")
  6.   else
  7.     if field "tuning selection" = "half step down" then
  8.       puppetSound("D flat")
  9.     else
  10.       if field "tuning selection" = "Drop D" then
  11.         puppetSound("D")
  12.       end if
  13.     end if
  14.   end if
  15. end
  16.